home *** CD-ROM | disk | FTP | other *** search
/ Education (Super OZ Shareware) / Education (Super OZ Shareware).iso / arj / technote.doc < prev    next >
Text File  |  1993-07-20  |  8KB  |  184 lines

  1.  
  2.      ARJ TECHNICAL INFORMATION                    April 1993
  3.  
  4.  
  5.      ** IMPORTANT NEWS ****************************************************
  6.  
  7.      Some archiver support programs have incorporated ARJ archive
  8.      identification schemes that are not reliable.  At ARJ 2.39, there
  9.      are now two versions of the large self-extraction module.    The 17K
  10.      byte ARJSFX module supports ARJ-SECURITY.    The standard 15K byte
  11.      ARJSFX module does NOT support ARJ-SECURITY.  For the first time, the
  12.      ARJ-SECURITY fields in the main ARJ header are publicly defined.
  13.  
  14.      In addition, the main ARJ header in self-extracting archives does NOT
  15.      immediately follow the EXE module now.
  16.  
  17.      ARJ has used the same ARJ archive identification scheme since ARJ
  18.      1.0.  The following is the algorithm:
  19.  
  20.      (1) find the ARJ header id bytes 0x60, 0xEA,
  21.      (2) read the next two bytes as the header record size in bytes,
  22.      (3) if the record size is greater than 2600, go back to the header
  23.      id file position, increment the file position, and go back to
  24.      step (1),
  25.      (4) read the header record based upon the previous byte count,
  26.      (5) calculate the 32 bit CRC of the header record data,
  27.      (6) read the next four bytes as the actual header record CRC,
  28.      (7) if the actual CRC does not equal the calculated CRC, go back
  29.      to the header id file position, increment the file position,
  30.      and go back to step (1).
  31.  
  32.      This algorithm is fully demonstrated in the UNARJ C source code.
  33.  
  34.      When using listfiles with ARJ, ARJ support programs should use the
  35.      "-p" option to ensure that ARJ will only extract the selected files
  36.      from an ARJ archive.  This is important for ARJ archives that have
  37.      pathname information stored.
  38.  
  39.      There is an extended header bug in older versions of ARJ, AV.C and
  40.      UNARJ.C.  The extended header processing in read_header() should
  41.      skip 4 bytes for the extended header CRC and not 2.  This is NOT a
  42.      current problem as no versions of ARJ use the extended header.
  43.  
  44.      **********************************************************************
  45.  
  46.  
  47.      Modification history:
  48.      Date      Description of modification:
  49.      --------  ------------------------------------------------------------
  50.      03/17/93  Added information about ARJSFX change.
  51.      02/17/93  Added description of ARJ security fields.
  52.            Added archive date-modified field.
  53.      12/03/91  Added BACKUP flag to header arj flags.
  54.      11/21/91  Described the two types of headers separately.
  55.      11/11/91  Added information about the change in text mode processing.
  56.      06/28/91  Added several new HOST OS numbers.
  57.      05/19/91  Improved the description of extended header processing.
  58.      05/11/91  Simplified this document.  Added volume label type.
  59.      03/11/91  Added directory file type.
  60.      02/23/91  Added more comments.
  61.      01/10/91  Corrected timestamp description and header order of file mode.
  62.      10/30/90  Corrected values of flags in ARJ flags.
  63.  
  64.  
  65.      ARJ archives contains two types of header blocks:
  66.  
  67.     Archive main header - This is located at the head of the archive
  68.     Local file header   - This is located before each archived file
  69.  
  70.      Structure of main header (low order byte first):
  71.  
  72.      Bytes Description
  73.      ----- -------------------------------------------------------------------
  74.        2   header id (main and local file) = 0x60 0xEA
  75.        2   basic header size (from 'first_hdr_size' thru 'comment' below)
  76.          = first_hdr_size + strlen(filename) + 1 + strlen(comment) + 1
  77.          = 0 if end of archive
  78.          maximum header size is 2600
  79.  
  80.        1   first_hdr_size (size up to and including 'extra data')
  81.        1   archiver version number
  82.        1   minimum archiver version to extract
  83.        1   host OS   (0 = MSDOS, 1 = PRIMOS, 2 = UNIX, 3 = AMIGA, 4 = MAC-OS)
  84.              (5 = OS/2, 6 = APPLE GS, 7 = ATARI ST, 8 = NEXT)
  85.              (9 = VAX VMS)
  86.        1   arj flags
  87.              (0x01 = NOT USED)
  88.              (0x02 = OLD_SECURED_FLAG)
  89.              (0x04 = VOLUME_FLAG)  indicates presence of succeeding
  90.                        volume
  91.              (0x08 = NOT USED)
  92.              (0x10 = PATHSYM_FLAG) indicates archive name translated
  93.                        ("\" changed to "/")
  94.              (0x20 = BACKUP_FLAG) indicates backup type archive
  95.              (0x40 = SECURED_FLAG)
  96.        1   security version (2 = current)
  97.        1   file type        (must equal 2)
  98.        1   reserved
  99.        4   date time when original archive was created
  100.        4   date time when archive was last modified
  101.        4   archive size (currently used only for secured archives)
  102.        4   security envelope file position
  103.        2   filespec position in filename
  104.        2   length in bytes of security envelope data
  105.        2   (currently not used)
  106.        ?   (currently none)
  107.  
  108.        ?   filename of archive when created (null-terminated string)
  109.        ?   archive comment  (null-terminated string)
  110.  
  111.        4   basic header CRC
  112.  
  113.        2   1st extended header size (0 if none)
  114.        ?   1st extended header (currently not used)
  115.        4   1st extended header's CRC (not present when 0 extended header size)
  116.  
  117.  
  118.      Structure of local file header (low order byte first):
  119.  
  120.      Bytes Description
  121.      ----- -------------------------------------------------------------------
  122.        2   header id (main and local file) = 0x60 0xEA
  123.        2   basic header size (from 'first_hdr_size' thru 'comment' below)
  124.          = first_hdr_size + strlen(filename) + 1 + strlen(comment) + 1
  125.          = 0 if end of archive
  126.          maximum header size is 2600
  127.  
  128.        1   first_hdr_size (size up to and including 'extra data')
  129.        1   archiver version number
  130.        1   minimum archiver version to extract
  131.        1   host OS   (0 = MSDOS, 1 = PRIMOS, 2 = UNIX, 3 = AMIGA, 4 = MAC-OS)
  132.              (5 = OS/2, 6 = APPLE GS, 7 = ATARI ST, 8 = NEXT)
  133.              (9 = VAX VMS)
  134.        1   arj flags (0x01 = GARBLED_FLAG) indicates passworded file
  135.              (0x02 = NOT USED)
  136.              (0x04 = VOLUME_FLAG)  indicates continued file to next
  137.                        volume (file is split)
  138.              (0x08 = EXTFILE_FLAG) indicates file starting position
  139.                        field (for split files)
  140.              (0x10 = PATHSYM_FLAG) indicates filename translated
  141.                        ("\" changed to "/")
  142.              (0x20 = BACKUP_FLAG)  indicates file marked as backup
  143.        1   method    (0 = stored, 1 = compressed most ... 4 compressed fastest)
  144.        1   file type (0 = binary,    1 = 7-bit text)
  145.              (3 = directory, 4 = volume label)
  146.        1   reserved
  147.        4   date time modified
  148.        4   compressed size
  149.        4   original size (this will be different for text mode compression)
  150.        4   original file's CRC
  151.        2   filespec position in filename
  152.        2   file access mode
  153.        2   host data (currently not used)
  154.        ?   extra data
  155.        4 bytes for extended file starting position when used
  156.        (these bytes are present when EXTFILE_FLAG is set).
  157.        0 bytes otherwise.
  158.  
  159.        ?   filename (null-terminated string)
  160.        ?   comment  (null-terminated string)
  161.  
  162.        4   basic header CRC
  163.  
  164.        2   1st extended header size (0 if none)
  165.        ?   1st extended header (currently not used)
  166.        4   1st extended header's CRC (not present when 0 extended header size)
  167.  
  168.        ...
  169.  
  170.        ?   compressed file
  171.  
  172.  
  173.      Time stamp format:
  174.  
  175.     31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16
  176.        |<---- year-1980 --->|<- month ->|<--- day ---->|
  177.  
  178.     15 14 13 12 11 10  9  8  7  6  5  4  3    2  1  0
  179.        |<--- hour --->|<---- minute --->|<- second/2 ->|
  180.  
  181.  
  182.      end of document
  183.  
  184.